home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / ASM-MIPS / INVENTOR.{24 < prev    next >
Text File  |  1999-09-17  |  662b  |  29 lines

  1. /*
  2.  * $Id: inventory.h,v 1.2 1998/05/01 01:35:54 ralf Exp $
  3.  */
  4. #ifndef __ASM_MIPS_INVENTORY_H
  5. #define __ASM_MIPS_INVENTORY_H
  6.  
  7. #include <linux/config.h>
  8.  
  9. #ifdef CONFIG_BINFMT_IRIX
  10. typedef struct inventory_s {
  11.     struct inventory_s *inv_next;
  12.     int    inv_class;
  13.     int    inv_type;
  14.     int    inv_controller;
  15.     int    inv_unit;
  16.     int    inv_state;
  17. } inventory_t;
  18.  
  19. extern int inventory_items;
  20. void add_to_inventory (int class, int type, int controller, int unit, int state);
  21. int dump_inventory_to_user (void *userbuf, int size);
  22. void init_inventory (void);
  23.  
  24. #else
  25. #define add_to_inventory(c,t,o,u,s)
  26. #define init_inventory()
  27. #endif
  28. #endif /* defined(CONFIG_BINFMT_IRIX) */
  29.